home *** CD-ROM | disk | FTP | other *** search
/ A.C.E. 1 / ACE CD 1.iso / files / docs / valhal2d.lha / Valhalla2BeforeTheWarHDI.lha / Valhalla < prev   
Encoding:
Text File  |  1995-02-13  |  1.8 KB  |  107 lines

  1. ; Installer Script for Valhalla by WALDo/tENSION
  2. ;
  3.  
  4. (set destname
  5.   (askdir
  6.     (prompt "Select or create a directory to install Valhalla to.")
  7.     (help @askdir-help)
  8.     (default "SYS:")
  9.   )
  10. )
  11.  
  12. (complete 0)
  13.  
  14. (copyfiles
  15.   (prompt "Copying Files From Disc 1.")
  16.   (help @copyfiles-help)
  17.   (source "valhalla:")
  18.   (dest destname)
  19.   (all)
  20. )
  21.  
  22. (complete 16)
  23.  
  24. (copyfiles
  25.   (prompt "Copying Files From Disc 2.")
  26.   (help @copyfiles-help)
  27.   (source "datadisk:")
  28.   (dest destname)
  29.   (all)
  30. )
  31.  
  32. (complete 32)
  33.  
  34. (copyfiles
  35.   (prompt "Copying Files From Disc 3.")
  36.   (help @copyfiles-help)
  37.   (source "level1:")
  38.   (dest destname)
  39.   (all)
  40. )
  41.  
  42. (complete 48)
  43.  
  44. (copyfiles
  45.   (prompt "Copying Files From Disc 4.")
  46.   (help @copyfiles-help)
  47.   (source "level2:")
  48.   (dest destname)
  49.   (all)
  50. )
  51.  
  52. (complete 64)
  53.  
  54. (copyfiles
  55.   (prompt "Copying Files From Disc 5.")
  56.   (help @copyfiles-help)
  57.   (source "level3:")
  58.   (dest destname)
  59.   (all)
  60. )
  61.  
  62. (complete 80)
  63.  
  64. (copyfiles
  65.   (prompt "Copying Files From Disc 6.")
  66.   (help @copyfiles-help)
  67.   (source "level4:")
  68.   (dest destname)
  69.   (all)
  70. )
  71.  
  72. (complete 96)
  73.  
  74. (textfile
  75.   (prompt "Creating Valhalla Script...")
  76.   (help "This creates a file called c:Valhalla")
  77.   (dest "c:Valhalla")
  78.   (append "cd " destname)
  79.   (append "\n")
  80.   (append "assign valhalla: " destname"/")
  81.   (append "\n")
  82.   (append "assign datadisk: " destname"/")
  83.   (append "\n")
  84.   (append "assign level1: " destname"/")
  85.   (append "\n")
  86.   (append "assign level2: " destname"/")
  87.   (append "\n")
  88.   (append "assign level3: " destname"/")
  89.   (append "\n")
  90.   (append "assign level4: " destname"/")
  91.   (append "\n")
  92.   (append "C/Vulcan >NIL: BeforeTheWar")
  93.   (append "\n")
  94.   (append "C/Software >NIL:")
  95.  
  96. )
  97.  
  98. (complete 100)
  99.  
  100. (run "c:protect c:Valhalla swred")
  101.  
  102. (message "The Installer Created A File In C: Called VALHALLA."
  103. " To Run The Game Just Open A Shell Window And Type VALHALLA,"
  104. " And The Game Will Run!")
  105.  
  106. (exit)
  107.